home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
windows
/
graphs
/
multicon.arj
/
MODVIEW.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-09
|
2KB
|
86 lines
//*************************************************************
// File name: MODVIEW.CPP
//
// Description:
// Implementation for CModView
//
// History: Date Author Comment
// 3/8/94 FJB Created
//
// Written by Microsoft Product Support Services, Windows Developer Support
// Copyright (c) 1994 Microsoft Corporation. All rights reserved.
//*************************************************************
#include "stdafx.h"
#include "multicon.h"
#include "modview.h"
//*************************************************************
// Class:
// CModView
//
// Description:
// AppWizard generated view class that exposes a public OnDraw override.
//
// Derived from:
// CView
//
// Data Members:
// None
//
// Member Functions:
// CModView : Constructor
// ~CModView : Destructor
// OnDraw : Does nothing
//
// Comments:
// This class is provided as an intermediate so the actual view class
// can be treated polymorphically by CIconWnd. Doesn't do anything
// except expose OnDraw as public.
//
//
// History: Date Author Comment
// 3/8/94 FJB Created
//
//*************************************************************
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CModView
IMPLEMENT_DYNCREATE(CModView, CView)
CModView::CModView()
{
}
CModView::~CModView()
{
}
BEGIN_MESSAGE_MAP(CModView, CView)
//{{AFX_MSG_MAP(CModView)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CModView drawing
void CModView::OnDraw(CDC* pDC)
{
CDocument* pDoc = GetDocument();
// TODO: add draw code here
}
/////////////////////////////////////////////////////////////////////////////
// CModView message handlers